4
תגובות
יצרתי Form שכשלוחצים על כפתור פועלת פונקציה בForm אחר אבל הבעיה היא שהפונקציה מקבלת את הנתונים אבל כשאני אומר לה להחליף משהו היא לא מחליפה.
4 תשובות
public void changetext(string a, string b)
{
this.textBox3.Text = a;
this.textBox4.Text = b;
this.textBox2.Text = textBox2.Text.Replace(textBox3.Text, textBox4.Text);
this.textBox3.Text = "";
this.textBox4.Text = "";
Form3 form = new Form3();
form.Close();
}
{
this.textBox3.Text = a;
this.textBox4.Text = b;
this.textBox2.Text = textBox2.Text.Replace(textBox3.Text, textBox4.Text);
this.textBox3.Text = "";
this.textBox4.Text = "";
Form3 form = new Form3();
form.Close();
}
מתוך שבע שורות קוד יש רק אחת שעושה משהו מועיל. את כל השאר אפשר למחוק בלי לעבד מהמשמעות.
public void changetext(string a, string b)
{
this.textBox2.Text = textBox2.Text.Replace(a, b);
{
this.textBox2.Text = textBox2.Text.Replace(a, b);